function getDate() // Returns the day of the month (an integer from 1 to 31) of the specified Date object according to local time. Local time is determined by the operating system on which Flash Player is running.
function getDay() // Returns the day of the week (0 for Sunday, 1 for Monday, and so on) of the specified Date object according to local time.
function getFullYear() // Returns the four-digit year according to local time.
function getHours() // Returns the hour according to local time.
function getMilliseconds() // Returns the milliseconds according to local time.
function getMinutes() // Returns the minutes according to local time.
function getMonth() // Returns the month according to local time.
function getSeconds() // Returns the seconds according to local time.
function getTime() // Returns the number of milliseconds since midnight January 1, 1970, universal time.
function getTimezoneOffset() // Returns the difference, in minutes, between the computer's local time and the universal time.
function getUTCDate() // Returns the day (date) of the month according to universal time.
function getUTCDay() // Returns the day of the week according to universal time.
function getUTCFullYear() // Returns the four-digit year according to universal time.
function getUTCHours() // Returns the hour according to universal time.
function getUTCMilliseconds() // Returns the milliseconds according to universal time.
function getUTCMinutes() // Returns the minutes according to universal time.
function getUTCMonth() // Returns the month according to universal time.
function getUTCSeconds() // Returns the seconds according to universal time.
function getYear() // Returns the year according to local time.
function setDate(date) // Sets the day of the month according to local time. Returns the new time in milliseconds.
function setFullYear(year, month, date) // Sets the full year according to local time. Returns the new time in milliseconds.
function setHours(hour) // Sets the hour according to local time. Returns the new time in milliseconds.
function setMilliseconds(millisecond) // Sets the milliseconds according to local time. Returns the new time in milliseconds.
function setMinutes(minute) // Sets the minutes according to local time. Returns the new time in milliseconds.
function setMonth(month, Date) // Sets the month according to local time. Returns the new time in milliseconds.
function setSeconds(second) // Sets the seconds according to local time. Returns the new time in milliseconds.
function setTime(milliseconds) // Sets the date in milliseconds. Returns the new time in milliseconds.
function setUTCDate(date) // Sets the date according to universal time. Returns the new time in milliseconds.
function setUTCFullYear(year, month, date) // Sets the year according to universal time. Returns the new time in milliseconds.
function setUTCHours(hour, minute, second, millisecond) // Sets the hour according to universal time. Returns the new time in milliseconds.
function setUTCMilliseconds(millisecond) // Sets the milliseconds according to universal time. Returns the new time in milliseconds.
function setUTCMinutes(minute, second, millisecond) // Sets the minutes according to universal time. Returns the new time in milliseconds.
function setUTCMonth(month, date) // Sets the month according to universal time. Returns the new time in milliseconds.
function setUTCSeconds(second, millisecond) // Sets the seconds according to universal time. Returns the new time in milliseconds.
function setYear(year) // Sets the year according to local time.
function toString() // Returns a string value representing the date and time stored in the specified Date object.
function UTC(year, month, date, hour, minute, second, millisecond) // Returns the number of milliseconds between midnight on January 1, 1970, universal time, and the specified time.